home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / PROGTOOL / YICONS23.ZIP;1 / INCLUDE / YAKPANEL.H < prev    next >
Encoding:
C/C++ Source or Header  |  1993-02-18  |  481 b   |  14 lines

  1. #include "stddefs.h"
  2. #include "yakwin.h"
  3. #include "gadgets.h"
  4.  
  5. class yakPanel : public yakWindow, public gadgetList //control panel window
  6. {
  7. public:
  8.   yakPanel(int x1, int y1, int x2, int y2) : yakWindow(x1,y1,x2,y2) {myFlags &= ~yakWindow::isSizeable;};
  9.   virtual word interpretKeyStroke(char myChar);
  10.   virtual word interpretMouseClick(void);
  11.   virtual void draw(word offset) {yakWindow::draw(offset); gadgetList::draw(x, y,offset);};
  12.   virtual int status(void);
  13. };
  14.